home *** CD-ROM | disk | FTP | other *** search
/ kermit.columbia.edu / kermit.columbia.edu.tar / kermit.columbia.edu / newsgroups / misc.19980424-19980901 / 000352_news@newsmaster….columbia.edu _Mon Aug 10 16:19:37 1998.msg < prev    next >
Internet Message Format  |  1998-08-31  |  3KB

  1. Return-Path: <news@newsmaster.cc.columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id QAA05780
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Mon, 10 Aug 1998 16:19:36 -0400 (EDT)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id QAA10822
  7.     for kermit.misc@watsun; Mon, 10 Aug 1998 16:19:36 -0400 (EDT)
  8. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Newsgroups: comp.protocols.kermit.misc
  11. Subject: Re: FTP versus Telnet connect
  12. Date: 10 Aug 1998 20:19:32 GMT
  13. Organization: Columbia University
  14. Lines: 32
  15. Message-ID: <6qnkkk$o04$1@apakabar.cc.columbia.edu>
  16. References: <35CF4F12.5FF6@ibm.net>
  17. NNTP-Posting-Host: watsun.cc.columbia.edu
  18. Xref: news.columbia.edu comp.protocols.kermit.misc:9069
  19.  
  20. In article <35CF4F12.5FF6@ibm.net>, Hal W. Hensley <hwhens@ibm.net> wrote:
  21. : We have a client for whom we are implementing a solution where we
  22. : believed, due to the existence of multiple platforms, utilizing Kermit
  23. : seemed to make the best sense.  A problem we've run into is that for
  24. : various security reasons, the client's host does not accommodate Telnet
  25. : sessions.  It does, however, accommodate FTP connections.  I've scoured
  26. : our docs and Columbia site, but can't seem to find anything addressing
  27. : FTP connections.  Has anyone else confronted a similar situation and, if
  28. : so, what was the solution.
  29. Kermit and FTP are two different protocols.  FTP is the standard Internet
  30. file transfer protocols, but, as many people are learning, it can not (in
  31. general) be used through firewalls, and it is difficult to automate.
  32.  
  33. When you say your client's host does not accommodate Telnet sessions, this
  34. probably means that they have elected not to run a Telnet server.  Thus
  35. users can not use a Kermit program such as C-Kermit, Kermit 95, or MS-DOS
  36. Kermit to make a Telnet connection to this system and transfer files over
  37. that connection, at least not in the normal fashion.
  38.  
  39. But there are other approaches, depending on the platform.  If the host is
  40. UNIX-based (for example), the Kermit program for UNIX, which is C-Kermit
  41. 6.0:
  42.  
  43.   http://www.columbia.edu/kermit/ck60.html
  44.  
  45. can be set up accept incoming TCP connections on the socket of your
  46. choice, just like an FTP server, except using Kermit protocol rather than
  47. FTP.  This is documented in the manual, "Using C-Kermit", 2nd Edition,
  48. pages 127-128.
  49.  
  50. - Frank